home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue30
/
bdeorx
/
BDEDORX.ZIP
/
RestUser
/
UserRest.dpr
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-10-26
|
275 b
|
17 lines
program UserRest;
uses
Forms,
UserRes1 in 'USERRES1.PAS' {MainForm};
{$R *.RES}
begin
{$IFDEF WIN32}
Application.Initialize;
{$ENDIF}
Application.Title := 'UserRestructor';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.